home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2001 December / december_2001.iso / Internet Programs / HTML Webmaster 2.0 / _SETUP.1 / aspforums.asp < prev    next >
Encoding:
Text File  |  2000-07-20  |  2.4 KB  |  56 lines

  1. <!-- #INCLUDE file="adoconsts.asp" -->
  2. <!-- #INCLUDE file="discussionengine.asp" -->
  3. <SCRIPT LANGUAGE="JavaScript" RUNAT="Server">
  4. //=======================================================================
  5. //
  6. // "ASP Forums" - a web-based discussion forum implementation.
  7. // Copyright (C) 1999, 2000  ASP Forums, http://www.aspforums.com/
  8. //
  9. // This library is free software; you can redistribute it and/or
  10. // modify it under the terms of the GNU Lesser General Public
  11. // License as published by the Free Software Foundation; either
  12. // version 2.1 of the License, or (at your option) any later version.
  13. //
  14. // This library is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17. // Lesser General Public License for more details.
  18. //
  19. // You should have received a copy of the GNU Lesser General Public
  20. // License along with this library; if not, write to the Free Software
  21. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  22. //
  23. //=======================================================================
  24.  
  25. //=======================================================================
  26. // ASP Forums version 2.0 beta 2 - July 20th 2000.
  27. //=======================================================================
  28.  
  29. //=======================================================================
  30. // Here's where we set up some of our variables to adapt the forum to
  31. // this site.  Modifying the way the forum outputs text can be done by
  32. // overriding some of the string prototypes.
  33. //
  34. // This is also where you should add any new configuration variables
  35. // or any new override methods.
  36. //
  37. // See http://www.aspforums.com/info/technical/ for further info.
  38. //=======================================================================
  39. currentUsername_disc = "Unset";
  40.  
  41. currentUserFullName_disc = "Name Unset";
  42.  
  43. currentUserEmailAddress_disc = "unset@unset.com";
  44.  
  45. isAdministrator_disc = false;
  46.  
  47. config.emailAdminAddress = "";
  48.  
  49. // If you have updated Data Access drivers on your server, you'll get
  50. // better performance if you use OLE DB instead of ODBC.  If you're using
  51. // the default DSN-less connection to the forum.mdb database, uncommenting
  52. // the following code should change it from an ODBC connection to an
  53. // OLE DB one.
  54. // config.databaseDSN = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" + config.DBPath
  55.  
  56. </SCRIPT>